:root{
    --color-1: #111109;
    --color-2: #f3f0eb;
    --color-3: #dfe0c6;
    --color-4: #223019;
    --color-5: #22393f;
}
body{
    background-color: var(--color-2);
}
.grid{
    padding-left: 5%;
    padding-right: 5%;
    display: grid;
    grid-template-columns: repeat(12,1fr);
    gap:30px;
}
.gallery img{
    max-width: 100%;
    display: block;
}

.titulo{
    padding-top: 3%;
    padding-bottom: 3%;
}
.titulo h1{
    grid-column: span 12;
    justify-self: center;
}
.titulo .container{
    grid-column: span 12;
    justify-self: center;
}
.texto-dibujado{
    height: 35px;
    margin: 20px 0px 20px 0px;
}
.intro .texto{
    grid-column: span 6;
    justify-self: center;
    display: flex;
    align-items: center;
}
.intro .video-intro{
    grid-column: span 6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.videos{
    padding-left: 0%;
    padding-right: 0%;
    display: grid;
    grid-template-columns: repeat(10,1fr);
    column-gap: 0.5em;
}
.video{
    grid-column: span 2;
    width: 100%;
    
}
iframe{
    aspect-ratio: 9 / 16;
    max-width: 400px;
    width: 60%;
}
.gallery img{
    max-width: 100%;
    margin-bottom: 0.5em;
    display: block;
}

.gallery{
    columns: 5 320px;
    column-gap: 0.5em;
}
.site-footer {
    position:relative;
    bottom: 0;
    width: 100%;
    height: 2.5rem;            /* Footer height */
}
@media only screen and (max-width: 1650px){
    .site-footer {
        margin-top: 0.5em;           /* Footer height */
      }
}
@media only screen and (max-width: 1280px){
    .video{
        grid-column: span 5;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .videos{
        gap: 0.5em;
    }
    .intro .video-intro iframe{
        min-width: 300px;
    }
    iframe{
        aspect-ratio: 9 / 16;
        max-width: 600px;
        width: 60%;
    }
    .site-footer {
        margin-top: 0px;           /* Footer height */
    }
}


@media only screen and (max-width: 768px){
    
    .intro .texto{
        grid-column: span 12;

    }
    .intro .video-intro{
        grid-column: span 12;
    }
    .video-intro iframe{
        max-width: 350px;
        width: 100%;
    }
   
    iframe{
        aspect-ratio: 9 / 16;
        max-width: 600px;
        width: 60%;
    }
    .titulo{
        font-size: 15px;
        margin: 20px 0px 20px 0px;
    }
    .titulo
        .texto-dibujado{
            height: 35px;
            margin: 0px 0px 0px 0px;

    } 

}
@media only screen and (max-width: 667px){
    .videos{
        padding-left: 5%;
        padding-right: 5%;  
        gap: 20px 0px;
    }
    .video{
        grid-column: span 10;
        max-width: 350px;
        width: 100%;
        display: flex;
        margin: auto;
    }
}